Hi SJH,
"Feeding" in negative time should be supported. KMotionCNC does it
with the code below by sending the SetFROTemp script command which
should be exactly the same as the function call.
void CForRevButton::HandleButtonDown(void)
{
CString s;
CCoordMotion *CM= Dlg->Interpreter->CoordMotion;
// FRO in direction
if (!Dlg->m_Simulate)
{
s.Format("SetFROTemp %.4f",m_dir * m_mag);
if (TheFrame->KMotionDLL->WriteLine(s)) return;
m_Moving=true;
}
}
You might debug it by printing the internal variables/functions:
Here is some related internal code:
void SetFROTemp(float FRO)
{
SetFROwRateTemp(FRO,GetNominalFROChangeTime());
}
// change from current to the specified FRO (FRO=1.0=Realtime)
// using a rate based on caller specified time to change from 1.0 to
0.0
void SetFROwRateTemp(float FRO, float DecelTime)
{
if (DecelTime < 1e-6)DecelTime=1e-6;
CS0_TimeBaseDelta = TIMEBASE*TIMEBASE/DecelTime;
CS0_TimeBaseDesired = FRO * TIMEBASE;
}
HTH
Regards
TK
Hi Tom,
you might have missed this, but anyway it is mostly
working except that I cannot set a negative rate in
SetFROTemp(). If it can't really go backwards then I
can live with that, but if it is possible then I would
like to get it working.
Regards,
SJH